Withdraw
Withdraw instructed amount from the specified account.
Method: POST
{{URL}}/jsonrpc
Headers
Name | Value |
---|---|
Content-Type | application/json |
Example
Payload Parameters
Parameter | Description |
---|---|
Type Mandatory | Enum Valid Values:
|
Mode Required only for WITHDRAW, DEPOSIT payment type | Enum Valid Values:
|
ReferenceId Mandatory | Example: REF0000000002 |
TimeStamp | String Example: 2020-04-22T07:44:55-05:00 |
Product Mandatory | String|
Program Mandatory | String Example: PL |
InstructedAmount Mandatory |
|
FeeAmount |
|
TaxAmount |
|
DebtorAccount |
|
CreditorAccount | CreditorAccountDeposit |
MFP |
|
- cURL
- C#
- Go
- NodeJS
curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{
"method": "CustomerService.AddUserKey",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "67028",
"credential": "Basic Key"
},
"payload": {
"Type": "TABIIBCARD_ISSUE",
"ReferenceId": "XXXPG220527133927030636",
"TimeStamp": "2022-05-27T13:39:28.268Z",
"Product": "XXXPAY",
"Program": "XXXPAY",
"InstructedAmount": {
"Amount": 6000,
"Currency": "USD"
},
"DebtorAccount": {
"AccountNumber": "200286693307123",
"IdentificationType": "WALLET"
},
"CreditorAccount": {
"AccountNumber": "200750038511414",
"IdentificationType": "WALLET"
}
}
}'
using System;
using RestSharp;
using System.Threading;
using System.Threading.Tasks;
namespace HelloWorldApplication {
class HelloWorld {
static async Task Main(string[] args) {
var options = new RestClientOptions("{{URL}}/jsonrpc")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("", Method.Post);
request.AddHeader("Content-Type", "application/json");
var body = @"{
" + "\n" +
@" ""method"": ""CustomerService.AddUserKey"",
" + "\n" +
@" ""id"": ""1"",
" + "\n" +
@" ""params"": {
" + "\n" +
@" ""api"": {
" + "\n" +
@" ""signature"": ""{{signature}}"",
" + "\n" +
@" ""keyId"": ""67028"",
" + "\n" +
@" ""credential"": ""Basic Key""
" + "\n" +
@" },
" + "\n" +
@" ""payload"": {
" + "\n" +
@" ""Type"": ""TABIIBCARD_ISSUE"",
" + "\n" +
@" ""ReferenceId"": ""XXXPG220527133927030636"",
" + "\n" +
@" ""TimeStamp"": ""2022-05-27T13:39:28.268Z"",
" + "\n" +
@" ""Product"": ""XXXPAY"",
" + "\n" +
@" ""Program"": ""XXXPAY"",
" + "\n" +
@" ""InstructedAmount"": {
" + "\n" +
@" ""Amount"": 6000,
" + "\n" +
@" ""Currency"": ""USD""
" + "\n" +
@" },
" + "\n" +
@" ""DebtorAccount"": {
" + "\n" +
@" ""AccountNumber"": ""200286693307123"",
" + "\n" +
@" ""IdentificationType"": ""WALLET""
" + "\n" +
@" },
" + "\n" +
@" ""CreditorAccount"": {
" + "\n" +
@" ""AccountNumber"": ""200750038511414"",
" + "\n" +
@" ""IdentificationType"": ""WALLET""
" + "\n" +
@" }
" + "\n" +
@"}
" + "\n" +
@"}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
}
}
}
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "%7B%7BURL%7D%7D/jsonrpc"
method := "POST"
payload := strings.NewReader(`{`+"
"+`
"method": "CustomerService.AddUserKey",`+"
"+`
"id": "1",`+"
"+`
"params": {`+"
"+`
"api": {`+"
"+`
"signature": "{{signature}}",`+"
"+`
"keyId": "67028",`+"
"+`
"credential": "Basic Key"`+"
"+`
},`+"
"+`
"payload": {`+"
"+`
"Type": "TABIIBCARD_ISSUE",`+"
"+`
"ReferenceId": "XXXPG220527133927030636",`+"
"+`
"TimeStamp": "2022-05-27T13:39:28.268Z",`+"
"+`
"Product": "XXXPAY",`+"
"+`
"Program": "XXXPAY",`+"
"+`
"InstructedAmount": {`+"
"+`
"Amount": 6000,`+"
"+`
"Currency": "USD"`+"
"+`
},`+"
"+`
"DebtorAccount": {`+"
"+`
"AccountNumber": "200286693307123",`+"
"+`
"IdentificationType": "WALLET"`+"
"+`
},`+"
"+`
"CreditorAccount": {`+"
"+`
"AccountNumber": "200750038511414",`+"
"+`
"IdentificationType": "WALLET"`+"
"+`
}`+"
"+`
}`+"
"+`
}`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var https = require('follow-redirects').https;
var fs = require('fs');
var options = {
'method': 'POST',
'hostname': '{{URL}}',
'path': '/jsonrpc',
'headers': {
'Content-Type': 'application/json'
},
'maxRedirects': 20
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
var postData = "{\r\n \"method\": \"CustomerService.AddUserKey\",\r\n \"id\": \"1\",\r\n \"params\": {\r\n \"api\": {\r\n \"signature\": \"{{signature}}\",\r\n \"keyId\": \"67028\",\r\n \"credential\": \"Basic Key\"\r\n },\r\n \"payload\": {\r\n \"Type\": \"TABIIBCARD_ISSUE\",\r\n \"ReferenceId\": \"XXXPG220527133927030636\",\r\n \"TimeStamp\": \"2022-05-27T13:39:28.268Z\",\r\n \"Product\": \"XXXPAY\",\r\n \"Program\": \"XXXPAY\",\r\n \"InstructedAmount\": {\r\n \"Amount\": 6000,\r\n \"Currency\": \"USD\"\r\n },\r\n \"DebtorAccount\": {\r\n \"AccountNumber\": \"200286693307123\",\r\n \"IdentificationType\": \"WALLET\"\r\n },\r\n \"CreditorAccount\": {\r\n \"AccountNumber\": \"200750038511414\",\r\n \"IdentificationType\": \"WALLET\"\r\n }\r\n}\r\n}";
req.write(postData);
req.end();
Body
{
"method": "TransactionService.Payment",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "6003",
"credential": "Basic Key"
},
"payload": {
"Type": "WITHDRAW",
"Mode": "TELLER",
"ReferenceId": "234235353493",
"TimeStamp": "2021-02-16T07:44:55-05:00",
"Product": "LEDGER",
"Program": "100000000000005",
"InstructedAmount": {
"Amount": 100,
"Currency": "USD"
},
"CreditorAccount": {
"reference": "txn000013"
},
"DebtorAccount": {
"AccountNumber": "200524894086671",
"InstitutionId": "101115302"
}
}
}
}
Response: 200
{
"id": "1",
"result": {
"status": "COMPLETED",
"timeStamp": "2021-02-16T07:44:55-0500",
"TransactionID": "81241",
"transactionNumber": "QA00000000010056",
"referenceID": "234235353493",
"processID": "PL23050300010051",
"transactionAmount": 100
}
}